home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Suzy B Software 2
/
Suzy B Software CD-ROM 2 (1994).iso
/
extras
/
programm
/
gemfsc19
/
gemfsc19.lzh
/
GEMFBIND
/
VCONTOUR.S
< prev
next >
Wrap
Text File
|
1993-03-16
|
946b
|
37 lines
;*========================================================================
;* VDIFAST Public Domain VDI bindings.
;*========================================================================
;*------------------------------------------------------------------------
;* Contour fill.
;*------------------------------------------------------------------------
globl _v_contourfill
_v_contourfill:
; .cargs #8,handle.w,x.w,y.w,index.w
handle = 8
x = 10
y = 12
index = 14
link a6,#0
; VContrl #103,,#1,#1
move.w handle(a6),-(sp) ; contrl[6]
clr.l -(sp) ; contrl[5,4]
move.w #1,-(sp) ; contrl[3]
subq.l #2,sp ; contrl[2]
move.w #1,-(sp) ; contrl[1]
move.w #103,-(sp) ; contrl[0]
subq.l #8,sp ;* -> ptsout, intout
pea x(a6) ;* -> ptsin
pea index(a6) ;* -> intin
pea 16(sp) ;* -> contrl
jmp vdicall
end